home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / rtfhelp.zip / RTFHBANN.C < prev    next >
Text File  |  1994-11-03  |  759b  |  27 lines

  1. /*
  2. ======================================================================
  3.    RTFHelp Windows Help Generation Tool
  4.    (C) Copyright 1994 by J. Hlavaty
  5.  
  6.    RTFHBann.c
  7.    Displays a few statistics
  8. ======================================================================
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <stdlib.h>
  13. #include <string.h>
  14. #include "rtfhelp.h"
  15.  
  16. static char *ID = "RTFHelp, (C) Copyright J. Hlavaty, 1994" ;
  17. static char *Name = "HELP COMPILER TEXT GENERATOR FOR WIN 3.x and WinOS/2" ;
  18. static char *Version = "2.01" ;
  19. static char *SubVersion = " " ;
  20.  
  21. void DisplayBanner()
  22. {
  23.   printf("%s\n%s.  RTFHelp ver. %s%s\n========================================================================\n",
  24.     ID, Name, Version, SubVersion) ;
  25. }
  26.  
  27.